* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0e14;
    /* Deep Premium Dark */
    overflow-x: hidden;
}

.navbar-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 25px;
    z-index: 1000;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Floating Logo --- */
/* --- Aapki existing style --- */
/* Logo Link reset */
.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatingLogo 3s ease-in-out infinite;
    cursor: pointer;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #00f2fe;
}

/* --- AAPKA ORIGINAL GLOW STYLE --- */
.logo-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Hover pe Glow ka color change aur brightness */
.logo-container:hover .logo-glow {
    background: linear-gradient(45deg, #ff00ea, #00f2fe);
    filter: blur(30px);
    transform: scale(1.3);
}

/* --- DHER SAARE BRIGHT STARS --- */
.stars-container {
    position: absolute;
    width: 5px;
    /* Thode bade stars taaki dikhen */
    height: 5px;
    background: transparent;
    z-index: 5;
    opacity: 0;
    border-radius: 50%;
}

.logo-container:hover .stars-container {
    opacity: 1;
    /* 40+ Stars Logic: Har direction mein shadows */
    box-shadow:
        0 -20px #fff, 0 20px #fff, -20px 0 #fff, 20px 0 #fff,
        15px -15px #00f2fe, -15px -15px #ff00ea, 15px 15px #4facfe, -15px 15px #fff,
        10px -40px #fff, -10px 40px #00f2fe, -40px -10px #ff00ea, 40px 10px #fff,
        /* Extra dense layers */
        30px -30px #4facfe, -30px -30px #fff, 30px 30px #00f2fe, -30px 30px #ff00ea,
        0 -50px #fff, 50px 0 #00f2fe, 0 50px #ff00ea, -50px 0 #fff;

    animation: starsBurst 0.7s infinite ease-out;
}

@keyframes starsBurst {
    0% {
        transform: scale(0.2) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: scale(3.5) rotate(120deg);
        /* Stars rotate hokar phailenge */
        opacity: 100;
        /* Bahut bade explosion ke liye shadows */
        box-shadow:
            0 -150px #fff, 0 150px #fff, -150px 0 #fff, 150px 0 #fff,
            120px -120px #00f2fe, -120px -120px #ff00ea, 120px 120px #4facfe, -120px 120px #fff,
            50px -180px #fff, -50px 180px #00f2fe, -180px -50px #ff00ea, 180px 50px #fff,
            140px -140px #4facfe, -140px -140px #fff, 140px 140px #00f2fe, -140px 140px #ff00ea,
            0 -200px #fff, 200px 0 #00f2fe, 0 200px #ff00ea, -200px 0 #fff;
    }
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00f2fe;
    text-shadow: 0 0 10px #00f2fe;
}

.join-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* --- Burger Menu (Hidden by default) --- */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px;
    transition: 0.4s;
}

/* --- Responsiveness --- */
@media screen and (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: rgba(10, 14, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .burger-menu {
        display: block;
    }

    /* Burger X Animation */
    .burger-menu.toggle .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.toggle .bar2 {
        opacity: 0;
    }

    .burger-menu.toggle .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(135deg,
            #020617,
            #0f172a,
            #111827,
            #020617);
    background-size: 400% 400%;
    animation: bodyGradient 15s ease infinite;
    overflow-x: hidden;
}

@keyframes bodyGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.floating-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Floating tags */
.floating-bg span {
    position: absolute;
    color: rgba(34, 211, 238, 0.15);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    animation: floatUp linear infinite;
}

/* Random positions */
.floating-bg span:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
}

.floating-bg span:nth-child(2) {
    left: 25%;
    animation-duration: 22s;
}

.floating-bg span:nth-child(3) {
    left: 40%;
    animation-duration: 16s;
}

.floating-bg span:nth-child(4) {
    left: 55%;
    animation-duration: 20s;
}

.floating-bg span:nth-child(5) {
    left: 70%;
    animation-duration: 26s;
}

.floating-bg span:nth-child(6) {
    left: 85%;
    animation-duration: 19s;
}

.floating-bg span:nth-child(7) {
    left: 35%;
    animation-duration: 24s;
}

.floating-bg span:nth-child(8) {
    left: 60%;
    animation-duration: 21s;
}

/* Floating animation */
@keyframes floatUp {
    from {
        transform: translateY(110vh) rotate(0deg);
    }

    to {
        transform: translateY(-10vh) rotate(360deg);
    }
}


body {
    margin: 0;
    background: linear-gradient(135deg,
            #020617,
            #0b1120,
            #111827,
            #020617);
    background-size: 400% 400%;
    animation: bgMove 18s ease infinite;
    overflow-x: hidden;
    font-family: sans-serif;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.orbs span {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: -1;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

/* Different colors & positions */
.orbs span:nth-child(1) {
    background: #22d3ee;
    top: 10%;
    left: 5%;
}

.orbs span:nth-child(2) {
    background: #6366f1;
    top: 60%;
    left: 80%;
    animation-duration: 30s;
}

.orbs span:nth-child(3) {
    background: #a855f7;
    top: 70%;
    left: 10%;
    animation-duration: 28s;
}

.orbs span:nth-child(4) {
    background: #3b82f6;
    top: 20%;
    left: 70%;
    animation-duration: 35s;
}

@keyframes floatOrb {
    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(-120px) translateX(80px);
    }
}


.particles span {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee;
    opacity: .7;
    z-index: -1;
    animation: floatParticle linear infinite;
}

/* Random placement */
.particles span:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
}

.particles span:nth-child(2) {
    left: 20%;
    animation-duration: 18s;
}

.particles span:nth-child(3) {
    left: 35%;
    animation-duration: 14s;
}

.particles span:nth-child(4) {
    left: 50%;
    animation-duration: 20s;
}

.particles span:nth-child(5) {
    left: 65%;
    animation-duration: 16s;
}

.particles span:nth-child(6) {
    left: 80%;
    animation-duration: 22s;
}

.particles span:nth-child(7) {
    left: 90%;
    animation-duration: 15s;
}

.particles span:nth-child(8) {
    left: 45%;
    animation-duration: 19s;
}

@keyframes floatParticle {
    from {
        transform: translateY(110vh);
        opacity: .2;
    }

    to {
        transform: translateY(-10vh);
        opacity: .9;
    }
}



/* --- Fonts --- */
.font-sync {
    font-family: 'Syncopate', sans-serif;
}

.font-jakarta {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Navbar Design --- */
.navbar-glass {
    height: 120px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Logo Glow & Animation --- */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floating 3s ease-in-out infinite;
}

.main-logo {
    height: 100px;
    /* Big Size */
    width: auto;
    object-fit: contain;
    /* Logo ke piche drop-shadow jo Dot pe thi */
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.9));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover par Glow badh jayega */
.logo-container:hover .main-logo {
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 1));
    transform: scale(1.1);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Navigation Links --- */

.navbar-glass {
    height: 140px;
    /* Logo bada hai isliye navbar ki height bhi thodi badhai hai */
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #fff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    transition: width 0.4s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* --- CTA Button --- */
.cta-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- Mobile Menu --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-overlay.active {
    transform: translateY(0%);
}

.mobile-link {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.2rem;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .navbar-glass {
        height: 100px;
        /* Mobile par thoda compact */
    }

    .main-logo {
        height: 70px !important;
        /* Mobile logo size */
    }
}


/* --- Hero Section Styles --- */
.hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: white;
}

.gradient-text {
    background: linear-gradient(to right, #06b6d4, #8b5cf6);
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    /* Safari/Chrome support */
    -webkit-text-fill-color: transparent;
    /* Makes text transparent to show BG */
    display: inline-block;
    /* Bahut zaroori hai agar text block element nahi hai */
}

.tech-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
}

.hero-desc {
    max-width: 600px;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
}

/* --- Buttons --- */
.primary-btn {
    background: #06b6d4;
    color: black;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.3s;
}

.primary-btn:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.3s;
}

/* --- Bento Grid --- */
.bento-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    text-align: left;
    transition: 0.5s;
    backdrop-filter: blur(10px);
}

.bento-box:hover {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

/* --- Background Grid --- */
/* --- Background Grid Animation --- */
/* --- Digital Grid Background --- */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Horizontal aur Vertical lines ka combination */
    background-image:
        linear-gradient(to right, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    /* Subtle breathing animation */
    animation: gridPulse 4s ease-in-out infinite alternate;
}

/* --- Scanning Moving Line (High-Tech Effect) --- */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(6, 182, 212, 0.2),
            transparent);
    z-index: -1;
    pointer-events: none;
    animation: scanMove 3s linear infinite;
}

.divider-container {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.energy-beam {
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    animation: beamMove 4s linear infinite;
}

@keyframes beamMove {
    0% {
        left: -200px;
    }

    100% {
        left: 100%;
    }
}

/* --- Moving Vertical Lines (Digital Stream) --- */
/* --- Global Background Setup --- */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Global Digital Grid (Sabhi Pages ke liye) --- */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    /* Main Grid Lines */
    background-image:
        linear-gradient(to right, rgba(6, 182, 212, 0.08) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(6, 182, 212, 0.08) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: gridPulse 5s ease-in-out infinite alternate;
}

/* --- Moving Bold Vertical Streams --- */
.grid-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    /* Extra width for smooth movement */
    height: 100%;
    /* In lines ki width badha di hai (4px aur heavy glow) */
    background-image: linear-gradient(to right,
            transparent,
            rgba(6, 182, 212, 0.15) 2px,
            rgba(6, 182, 212, 0.3) 4px,
            rgba(6, 182, 212, 0.15) 6px,
            transparent 8px);
    background-size: 300px 100%;
    animation: lineMove 15s linear infinite;
    filter: blur(1px);
    /* Halka sa soft neon look dene ke liye */
}

/* --- Scanning Horizontal Line --- */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Line ki width badhai hai */
    background: linear-gradient(to bottom,
            transparent,
            rgba(6, 182, 212, 0.4),
            rgba(6, 182, 212, 0.8),
            rgba(6, 182, 212, 0.4),
            transparent);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
    z-index: -1;
    pointer-events: none;
    animation: scanMove 6s linear infinite;
}

/* --- Animations --- */
@keyframes gridPulse {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 0.8;
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(-10vh);
    }

    100% {
        transform: translateY(110vh);
    }
}

@keyframes lineMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* Left to right infinite loop */
}

.tech-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Icon aur text ke beech ka gap */
    padding: 10px 20px;
    background: #f4f4f4;
    /* Card background color */
    border-radius: 8px;
    margin: 0 15px;
    font-weight: bold;
    font-family: sans-serif;
}

/* Icons ko color dene ke liye (Optional) */
.tech-card i {
    font-size: 1.2rem;
}

.fa-html5 {
    color: #E34F26;
}

.fa-css3-alt {
    color: #1572B6;
}

.fa-bootstrap {
    color: #7952B3;
}

.fa-js {
    color: #F7DF1E;
}

.fa-php {
    color: #777BB4;
}

.fa-laravel {
    color: #FF2D20;
}

.fa-react {
    color: #61DAFB;
}

/* --- Tech Marquee Section --- */
.tech-marquee-container {
    position: relative;
    padding: 40px 0;
    /* Thodi extra padding for background */
    overflow: hidden;
    /* Important for background */
    /* Naya Animated Background */
    background:
        linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)),
        /* Dark Overlay */
        repeating-linear-gradient(0deg, #050505 0px, #050505 1px, transparent 1px, transparent 30px),
        /* Horizontal lines */
        repeating-linear-gradient(90deg, #050505 0px, #050505 1px, transparent 1px, transparent 30px);
    /* Vertical lines */
    background-size: 100% 100%, 100% 30px, 30px 100%;
    /* Size of lines */
    animation: backgroundPulse 5s infinite alternate ease-in-out;
    /* Background ko halka glow dega */
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.2);
    /* Section ko overall glow */
}

/* Is div ke piche moving lines */
.tech-marquee-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(to right, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    /* Cyan aur Purple lines */
    background-size: 80px 100%, 120px 100%;
    /* Lines ki spacing */
    animation: moveCyberGrid 20s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

.tech-track {
    display: flex;
    white-space: nowrap;
    gap: 40px;
    /* Thoda zyada space */
    animation: scrollRightToLeft 30s linear infinite;
    /* Animation speed thodi slow ki hai */
    width: max-content;
    padding: 10px 0;
    /* Track ko thodi padding */
}

.tech-card {
    font-family: 'Syncopate', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #06b6d4;
    padding: 18px 45px;
    /* Thoda bada card */
    background: rgba(255, 255, 255, 0.05);
    /* Zyada prominent glass effect */
    border: 1px solid rgba(6, 182, 212, 0.4);
    /* Stronger border glow */
    border-radius: 16px;
    /* Zyada rounded corners */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
    /* Stronger blur */
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.tech-card:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    transform: translateY(-8px) scale(1.08);
    /* Zyada lift aur scale */
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* --- New Animations for Background --- */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Adjust for new gap */
    }
}

@keyframes moveCyberGrid {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }

    /* Right to left movement */
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    /* Background halka sa pulse karega */
}

/* ===== NEO LUXURY CYBER GLOW ===== */

.section-ad-digital {
    background:
        radial-gradient(circle at 15% 20%, #0f172a, #020617 60%),
        linear-gradient(120deg, #020617, #0b1120);
    position: relative;
}

/* Animated glow background */
.section-ad-digital::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #22d3ee33, transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(80px);
    animation: floatGlow 12s infinite alternate;
}

@keyframes floatGlow {
    to {
        transform: translate(200px, 120px);
    }
}

/* Grid */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(34, 211, 238, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, .08) 1px, transparent 1px);
    background-size: 45px 45px;
}

/* Glass content card */
.section-ad-digital .lg\:w-7\/12 {
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 50px;
    border: 1px solid rgba(34, 211, 238, .25);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .7),
        inset 0 0 30px rgba(34, 211, 238, .05);
}

/* Founder frame */
.founder-frame {
    position: relative;
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    overflow: visible;
}

/* Back creative plate */
.founder-frame::before {
    content: "";
    position: absolute;
    inset: -15px -15px auto auto;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    border-radius: 40px;
    z-index: -1;
    opacity: .35;
}

/* Side shape */
.founder-frame::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    border-radius: 30px 60px 30px 60px;
    z-index: -1;
    opacity: .4;
}

.founder-img {
    width: 100%;
    border-radius: 22px;
    display: block;
}


/* Badge */
.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 20px 26px;
    color: white;

    /* Glass look */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .3);

    animation: luxuryFloat 5s ease-in-out infinite;
    overflow: hidden;
}

/* Animated gradient border */
.experience-badge::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            #22d3ee,
            #6366f1,
            #a855f7,
            #22d3ee);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderMove 6s linear infinite;
}

/* Soft glow */
.experience-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #22d3ee, #a855f7);
    z-index: -2;
    filter: blur(25px);
    opacity: .5;
}

/* Floating + micro rotate */
@keyframes luxuryFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Moving border gradient */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Text styling */
.experience-badge .num {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #22d3ee, #a855f7);

    background-clip: text;
    color: transparent;
}

.experience-badge .txt {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .9;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 18px 22px;
    color: white;

    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 16px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);

    /* FLOATING ANIMATION */
    animation: floatBadge 3s ease-in-out infinite;

    z-index: 5;
}

/* Floating keyframes */
@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Gradient heading */
.gradient-text {
    background: linear-gradient(90deg, #22d3ee, #3b82f6, #a855f7);

    background-clip: text;
    /* Standard */
    -webkit-background-clip: text;
    /* Safari/Chrome */

    color: transparent;
    /* Fallback */
    -webkit-text-fill-color: transparent;
}


/* Feature list hover */
.group {
    transition: .3s;
}

.group:hover {
    transform: translateX(8px);
}

.group:hover span {
    color: #22d3ee;
}

/* Premium button */
.primary-btn {
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(34, 211, 238, .45);
}

.primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: translateX(-100%);
}

.primary-btn:hover::before {
    transform: translateX(100%);
    transition: 1s;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(34, 211, 238, .6);
}

/* Subtle fade animation */
.section-ad-digital * {
    animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #020617;
    color: white;
}

.services-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

/* Background Effects */
.noise-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    z-index: 1;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.glow-1 {
    top: -10%;
    right: -10%;
    background: #2563eb;
}

.glow-2 {
    bottom: -10%;
    left: -10%;
    background: #9333ea;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.float-anim {
    animation: float 8s infinite ease-in-out;
}

/* Typography */
.accent-text {
    color: #22d3ee;
    font-weight: 800;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.premium-gradient-text {
    background: linear-gradient(135deg, #22d3ee, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.description {
    color: #94a3b8;
    font-size: 1.125rem;
    border-left: 2px solid #06b6d4;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

/* Cards */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.services-section {
    background-color: #020617;
    padding: 100px 0;
    min-height: 100vh;
}

/* BG LAYERS */
.noise-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 2px, transparent 2px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 3;
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    right: -5%;
    background: #0ea5e9;
}

.glow-2 {
    bottom: -10%;
    left: -5%;
    background: #7c3aed;
}

/* CONTENT */
.z-10 {
    z-index: 10;
    position: relative;
}

.accent-text {
    color: #22d3ee;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: block;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-top: 10px;
}

.premium-gradient-text {
    background: linear-gradient(135deg, #22d3ee, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

/* CARDS */
.service-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(34, 211, 238, 0.3);
}

.card-content {
    padding: 40px;
    position: relative;
    z-index: 5;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: white;
    color: black;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card:hover h3 {
    color: #22d3ee;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.case-study-link {
    color: #22d3ee;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Colors */
.icon-cyan {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
}

.icon-blue {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.icon-emerald {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.icon-violet {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.icon-rose {
    color: #f43f5e;
    background: rgba(244, 63, 94, 0.1);
}

.icon-orange {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* SPOTLIGHT */
.spotlight {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.service-card:hover .spotlight {
    opacity: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.float-anim {
    animation: float 10s infinite ease-in-out;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    /* 1px ko 2px ya 3px kar dein width badhane ke liye */
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 2px, transparent 2px);

    /* Grid ka size (yahan se boxes bade ya chhote honge) */
    background-size: 60px 60px;

    /* Fading effect taaki lines chubhein nahi */
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 95%);

    z-index: 0;
    pointer-events: none;
}

/* Intersection points ko aur highlight karne ke liye (Dot effect) */
.grid-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(34, 211, 238, 0.15) 1.5px, transparent 0);
    background-size: 60px 60px;
    z-index: 1;
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

/* Hero section specific glow placement */
.glow-hero-1 {
    top: -15%;
    left: -15%;
    background: #0ea5e9;
}

.glow-hero-2 {
    bottom: -15%;
    right: -15%;
    background: #7c3aed;
}

/* Typing animation cursor */
.typing-text::after {
    content: '|';
    display: inline-block;
    animation: blink-caret 0.75s step-end infinite;
    color: white;
    /* Cursor color */
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: white;
    }
}

/* --- COMMON STYLES (Agar abhi tak nahi add kiye) --- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}



/* BG LAYERS (Ensure these are shared between sections) */
.noise-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    pointer-events: none;
}

.grid-overlay::after {
    /* Cross points for grid */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 0);
    background-size: 80px 80px;
}

.glow {
    /* Common glow styles for both sections */
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 3;
    opacity: 0.15;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.float-anim {
    animation: float 10s infinite ease-in-out;
}

/* Global text gradients */
.premium-gradient-text {
    background: linear-gradient(135deg, #22d3ee, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

/* Neon button style */
.neon-btn {
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
    transition: all 0.3s;
}

.neon-btn:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
}

/* Your existing service card and header styles */
/* ... (Keep all your existing CSS for .services-section, cards, etc.) ... */


/* Container jo size ko control karega */
.project-banner-container {
    width: 100%;
    max-width: 1000px;
    /* Banner ki width limits mein rahegi */
    margin: 40px auto;
    padding: 0 15px;
}

.premium-compact-banner {
    position: relative;
    background: #0f172a;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Sab kuch andar rahega */
    padding: 40px;
}

/* Background Grids */
.banner-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.glow-point {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    filter: blur(50px);
}

/* Flexbox Layout */
.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
    /* Mobile friendly */
}

/* Image Frame Fix */
.banner-img-side {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

.modern-frame {
    position: relative;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.banner-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* Text Styling */
.banner-text-side {
    flex: 2;
    min-width: 300px;
}

.banner-heading {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.gradient-txt {
    background: linear-gradient(90deg, #22d3ee, #d946ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    border-right: 3px solid #d946ef;
    padding-right: 8px;
}

.banner-para {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.banner-contact-btn {
    padding: 12px 30px;
    background: white;
    color: #0f172a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.banner-contact-btn:hover {
    background: #22d3ee;
    transform: translateY(-3px);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .banner-inner {
        text-align: center;
    }

    .banner-heading {
        font-size: 1.8rem;
    }

    .banner-text-side {
        order: 1;
    }

    .banner-img-side {
        order: 2;
    }
}

/* 1. Image Side Container */
.banner-img-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* 2. Modern Frame (Dabba) */
.modern-frame {
    width: 250px;
    /* Frame ki chaurai */
    height: 250px;
    /* Frame ki lambai */
    background: #1e293b;
    /* Frame ka color */
    border-radius: 20px;
    /* Corners rounded */
    border: 2px solid rgba(255, 255, 255, 0.1);

    /* Sabse Zaroori: Isse image bahar nahi niklegi */
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* 3. Image (Banner Avatar) */
.banner-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* --- IMAGE KO UPAR LENE KE LIYE --- */
    /* Pehla 'center' matlab horizontal center rahega */
    /* Doosra '0%' matlab image bilkul top se shuru hogi */
    object-position: center 20%;

    /* Agar 0% se bhi baat nahi ban rahi, toh niche wala try karein: */
    /* object-position: center -20px; */

    /* Image ka size control karne ke liye */
    transform: scale(1.1);

    display: block;
}

/* Hover effect: Image thodi zoom hogi par frame ke andar hi rahegi */
.modern-frame:hover .banner-avatar {
    transform: scale(1.05);
}

.footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: white;
    padding: 60px 10%;
    font-family: sans-serif;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-col img {
    width: 120px;
    margin-bottom: 10px;
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    align-items: start;
}

.footer h3 {
    margin-bottom: 15px;
    color: #38bdf8;
    font-size: 18px;
}

.footer a {
    display: block;
    color: #cbd5f1;
    text-decoration: none;
    margin: 8px 0;
    transition: .3s;
    margin: 6px 0;
}

.footer a:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

.footer p {
    margin: 8px 0;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
}

.logo {
    width: 50%;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text {
    background: linear-gradient(45deg, #38bdf8, #818cf8);

    /* Required for gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Standard property for future support */
    background-clip: text;
    color: transparent;
}

.newsletter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 6px;
    flex: 1;
    height: 42px;
}

.newsletter button {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background: #38bdf8;
    color: white;
    cursor: pointer;
}

.newsletter button:hover {
    background: #0ea5e9;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1f2937;
    color: #94a3b8;
}

.footer {
    padding: 40px 8%;
}


.social-icons a {
    color: white;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #38bdf8;
    transform: translateY(-4px);
}

.logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left aligned */
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}